Notes/Domino 6 and 7 Forum

Notes/Domino 6 and 7 Forum





For loop question
~Lisa Dwonigen 11/23/2003 10:55 PM
Domino Designer 6.0.1 All Platforms


Hi Folks,

This is the simplified code of what I am trying to do. I would think I would get a return of "not blank" : "blank" : "blank" : "not blank". All I am getting is "blank".

Can anyone tell me what I am doing wrong here?

Any help would be appreciated.

Thanks,

Patti

signatures:="Fred Flintstone" : "Daffie Duck" : "Porky Pig" : "Elmer Fudd";
commentnames:="Fred Flintstone":"Elmer Fudd";
@For(n:=1; n<=@Elements(signatures); n:=n+1;
Elementinlist:= @Member(signatures[n]; commentnames);
Commentlinks:= @If(Elementinlist =0; "blank"; "not blank")
);

Commentlinks

Go back